home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iis_bdir.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  62 lines

  1. #
  2. # This script was written by John Lampe (j_lampe@bellsouth.net)
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7. if(description)
  8. {
  9.   script_id(10577);
  10.  script_version ("$Revision: 1.17 $");
  11.  
  12.   script_name(english:"Check for bdir.htr files");
  13.   desc["english"] = "
  14. The file bdir.htr is a default IIS files which can give
  15. a malicious user a lot of unnecessary information about 
  16. your file system.  Specifically, the bdir.htr script allows
  17. the user to browse and create files on hard drive.  As this
  18. includes critical system files, it is highly possible that
  19. the attacker will be able to use this script to escalate
  20. privileges and gain 'Administrator' access.
  21.  
  22. Example,
  23. http://target/scripts/iisadmin/bdir.htr??c:\
  24.  
  25. Solution: If you do not need these files, then delete them, 
  26. otherwise use suitable access control lists to ensure that
  27. the files are not world-readable.
  28.  
  29. Risk factor : Medium";
  30.  
  31.   script_description(english:desc["english"]);
  32.   script_summary(english:"Check for existence of bdir.htr");
  33.   script_category(ACT_GATHER_INFO);
  34.   script_family(english:"CGI abuses", francais:"Abus de CGI");
  35.   script_copyright(english:"By John Lampe....j_lampe@bellsouth.net");
  36.   script_dependencies("http_version.nasl");
  37.   script_require_ports("Services/www", 80);   
  38.   exit(0);
  39. }
  40.  
  41.  
  42.  
  43. #
  44. # The script code starts here
  45.  
  46. include("http_func.inc");
  47. include("http_keepalive.inc");
  48.     
  49. port = get_http_port(default:80);
  50.  
  51. sig = get_http_banner(port:port);
  52. if ( sig && "Server: Microsoft/IIS" >!< sig ) exit(0);
  53. if(get_port_state(port)) 
  54. {
  55.     if(is_cgi_installed_ka(item:"/scripts/iisadmin/bdir.htr", port:port))
  56.     {
  57.         security_warning(port);
  58.         exit(0);
  59.     }
  60. }
  61.  
  62.